From 29324c513110b4f18890112bcd758ad4bbf6961f Mon Sep 17 00:00:00 2001 From: Benjamin Otte Date: Sat, 3 Mar 2012 18:42:15 +0100 Subject: [PATCH] gtk: Add gtktypes.h So far, the files is empty. --- gtk/Makefile.am | 1 + gtk/gtk.h | 1 + gtk/gtktypes.h | 39 +++++++++++++++++++++++++++++++++++++++ 3 files changed, 41 insertions(+) create mode 100644 gtk/gtktypes.h diff --git a/gtk/Makefile.am b/gtk/Makefile.am index 75ab96d195..9f4f8182e2 100644 --- a/gtk/Makefile.am +++ b/gtk/Makefile.am @@ -359,6 +359,7 @@ gtk_public_h_sources = \ gtktreestore.h \ gtktreeview.h \ gtktreeviewcolumn.h \ + gtktypes.h \ gtkuimanager.h \ gtkviewport.h \ gtkvolumebutton.h \ diff --git a/gtk/gtk.h b/gtk/gtk.h index 91344cbcf0..de0181b658 100644 --- a/gtk/gtk.h +++ b/gtk/gtk.h @@ -214,6 +214,7 @@ #include #include #include +#include #include #include #include diff --git a/gtk/gtktypes.h b/gtk/gtktypes.h new file mode 100644 index 0000000000..24a64f0fac --- /dev/null +++ b/gtk/gtktypes.h @@ -0,0 +1,39 @@ +/* GDK - The GIMP Drawing Kit + * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library. If not, see . + */ + +/* + * Modified by the GTK+ Team and others 1997-2000. See the AUTHORS + * file for a list of people on the GTK+ Team. See the ChangeLog + * files for a list of changes. These files are distributed with + * GTK+ at ftp://ftp.gtk.org/pub/gtk/. + */ + +#if !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION) +#error "Only can be included directly." +#endif + +#ifndef __GTK_TYPES_H__ +#define __GTK_TYPES_H__ + +#include + +G_BEGIN_DECLS + + +G_END_DECLS + +#endif /* __GTK_TYPES_H__ */ -- 2.30.2